home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / system / ffg202.zip / UTIL_BAT.ZIP / DELBAK.BAT < prev    next >
DOS Batch File  |  1994-10-23  |  329b  |  14 lines

  1. @echo off
  2. cls
  3. echo Here all .BAK files will be found and deleted.  You will be asked to confirm
  4. echo each file deletion.
  5. echo.
  6. echo Press any key to begin searching...
  7. pause >nul
  8. ::
  9. :: Note use of double %% below.  Double %% are used instead of single % inside
  10. :: batch files.
  11. ::
  12.   echo on
  13.   ffg *:*.bak /e"DEL %%n"
  14.